home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _670AD951C0114CC2A4EE1CE85B96FBDF < prev    next >
Encoding:
Text File  |  2006-08-04  |  806 b   |  30 lines

  1.  
  2. from PSPApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Corel Corporation',
  7.         'Copyright': u'Copyright (c) 2003-2004 Corel Corporation  All rights reserved.',
  8.         'Description': 'Factory default preset for MosaicAntique effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_MosaicAntique():
  14.     return {
  15.         'TileDiffusion': 70,
  16.         'GroutWidth': 2,
  17.         'NumColumns': 50,
  18.         'FillColor': (0, 0, 0),
  19.         'GeneralSettings': {
  20.             'AutoActionMode': 0,
  21.             'ExecutionMode': 0
  22.             },
  23.         'GroutDiffusion': 50,
  24.         'Symmetric': 1,
  25.         'NumRows': 50
  26.         }
  27.  
  28. def Do(Environment):
  29.     App.Do( Environment, 'MosaicAntique', Preset_MosaicAntique())
  30.